home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / ein / fvi / fvimsg / makefile < prev    next >
Makefile  |  1995-09-21  |  504b  |  30 lines

  1.  
  2. PROG = fvimsg
  3.  
  4. SRC  = $(PROG).c
  5. OBJ  = $(PROG).obj
  6. EXE  = $(PROG).exg
  7. LNK  = $(PROG).lnk
  8. HCL  = k:\run386 -nocrt k:\hcd386p
  9. OPT1 = -tmpi1 k:\tmp1 -tmpi2 k:\tmp2 -tmptp k:\tmp3
  10. OPT2 = -on Public_var_warnings -off Floating_point
  11. DLRC = k:\dlrc
  12. LINK = k:\run386 -nocrt k:\386linkp
  13.  
  14. metal : $(EXE)
  15.  
  16. .c.obj:
  17.     $(HCL) $< $(OPT1) $(OPT2)
  18.  
  19. .rdf.rco:
  20.     $(DLRC) $<
  21.  
  22. msgmain.obj:
  23. msgfunc.obj:
  24. msgset.obj:
  25.  
  26. $(EXE) :    $(LNK) msgmain.obj msgfunc.obj msgset.obj
  27.     $(LINK) @$(LNK)
  28.     dir *.exg
  29.  
  30.